From 399de111167c198a7d2ccbd459a2db7c6389181e Mon Sep 17 00:00:00 2001 From: Paolo Borelli Date: Sun, 26 Jun 2011 20:41:21 +0200 Subject: [PATCH] Speed up page insertion Make sure to call widget_set_child_visible(false) on all tabs except the current before calling widget_set_parent. --- gtk/gtknotebook.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c index 7b44f82655..5bf3de5b6b 100644 --- a/gtk/gtknotebook.c +++ b/gtk/gtknotebook.c @@ -4560,6 +4560,10 @@ gtk_notebook_real_insert_page (GtkNotebook *notebook, gtk_notebook_menu_item_create (notebook, g_list_find (priv->children, page)); + /* child visible will be turned on by switch_page below */ + if (priv->cur_page != page) + gtk_widget_set_child_visible (child, FALSE); + gtk_widget_set_parent (child, GTK_WIDGET (notebook)); if (tab_label) gtk_widget_set_parent (tab_label, GTK_WIDGET (notebook)); @@ -4569,10 +4573,6 @@ gtk_notebook_real_insert_page (GtkNotebook *notebook, if (!priv->first_tab) priv->first_tab = priv->children; - /* child visible will be turned on by switch_page below */ - if (priv->cur_page != page) - gtk_widget_set_child_visible (child, FALSE); - if (tab_label) { if (priv->show_tabs && gtk_widget_get_visible (child)) -- 2.30.2